Skip to main content

RingData

The data about the rings of a planet, if it has any.


RingStart

It ranges between 6000 and 12000. It increments by 1. It is of the type number. It is read-only, it cannot be assigned to.


RingsAmount

The total amount of individual asteroids within the rings. It ranges between 500 and 1250. It increments by 1. It is of the type number. It is read-only, it cannot be assigned to.


RingsEnd

It ranges between 6800 and 15000. It increments by 1. It is of the type number. It is read-only, it cannot be assigned to.


RingsType

The physical material the majority of the rings are made of. It can be any of the following strings: "Ice", "Stone". It is read-only, it cannot be assigned to.

Luau Type

This is the luau type for RingData. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).

type RingData = {
read RingsAmount: number,
read RingsEnd: number,
read RingsType: "Ice" | "Stone",
read RingStart: number,
}